home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Complete Applications / Othello C Source / placestone.c < prev    next >
Encoding:
C/C++ Source or Header  |  1985-06-16  |  709 b   |  38 lines  |  [TEXT/ttxt]

  1. /* placestone.c - PlaceStone */
  2.  
  3. #include "mac/quickdraw.h"
  4. #include "mac/osintf.h"
  5. #include "mac/toolintf.h"
  6. #include "othello.h"
  7.  
  8.  
  9.  
  10. PlaceStone(row, col, color)
  11. int    row, col, color;
  12. {
  13.     Rect    stone;
  14.     GrafPtr    saveport;
  15.  
  16.     GetPort(&saveport);
  17.     SetPort(myWindow);
  18.     stone.top    = SCALE*(row) - SCALE/2 + 1;
  19.     stone.left    = SCALE*(col) - SCALE/2 + 1;
  20.     stone.bottom    = SCALE*(row) + SCALE/2;
  21.     stone.right    = SCALE*(col) + SCALE/2;
  22.     EraseOval(&stone);
  23.     switch (color) {
  24.     case stoneWhite:
  25.         FrameOval(&stone);
  26.         break;
  27.     case stoneBlack:
  28.         PaintOval(&stone);
  29.         break;
  30.     }
  31.     SetPort(saveport);
  32.  
  33.     --nStones[GameBoard[row][col] & stoneColor];
  34.     GameBoard[row][col] =
  35.     GameBoard[row][col] & ~stoneColor | color;
  36.     ++nStones[color];
  37. }
  38.